home *** CD-ROM | disk | FTP | other *** search
/ Computer Shopper 121 / Computer Shopper 121 / Computer Shopper 121.iso / Internet / Demon / IEXPLORE / IEAKJAVA.EXE / CLASSR.EXE / java / util / Enumeration.class (.txt) < prev    next >
Encoding:
Java Class File  |  1997-01-31  |  261 b   |  8 lines

  1. package java.util;
  2.  
  3. public interface Enumeration {
  4.    boolean hasMoreElements();
  5.  
  6.    Object nextElement();
  7. }
  8.